基于厂区电子地图的安全管理系统源码一、源码特点 1、把厂区按电子地图方式展现,可缩放拖拉、定位;在指定地点设置标注,并可编辑事件信息、上传图片,指定对应责任人,自动邮件发送。整个流程为企业通用的 发现-指出-对应-整改-跟踪-确认-封闭。
2、本代码不包含整套系统功能模,因为各企业安全管理体系、理念不同,所以并不能通用。只包含电子地图处理的核心代码,供安全管理软件开发人员使用,厂区地图需要自己制作。除地图操作方面提供技术帮助外,不负责其他支持。
二、菜单功能
1、HSE现场巡回指出事项处理
2、安全事件处理
3、员工安全旅程管理
4、特种作业资格管理
三、注意事项
1、开发环境为Visual Studio 2012,数据库为Oracle
.
├── 51Aspx源码必读.txt
├── AQWS_SYS.sln
├── AQWS_SYS.suo
├── AQWS_SYS.v11.suo
├── AQWS_SYS.v12.suo
├── Backup
│ ├── NacksWebSys.Web
│ │ ├── ClientBin
│ │ │ └── NacksWebSys.xap
│ │ ├── DBHelper.cs
│ │ ├── Login.aspx
│ │ ├── Login.aspx.cs
│ │ ├── Login.aspx.designer.cs
│ │ ├── MapService.svc
│ │ ├── MapService.svc.cs
│ │ ├── NacksWebSys.Web.csproj
│ │ ├── NacksWebSys.Web.csproj.user
│ │ ├── NacksWebSysTestPage.aspx
│ │ ├── NacksWebSysTestPage.html
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Silverlight.js
│ │ ├── SilverlightFaultBehavior.cs
│ │ ├── UploadService.svc
│ │ ├── UploadService.svc.cs
│ │ ├── Web.Debug.config
│ │ ├── Web.Release.config
│ │ └── Web.config
│ ├── NacksWebSys.sln
│ ├── NacksWebSys.v11.suo
│ └── Silverlight.Validators
│ ├── Controls
│ │ ├── DefaultIndicator.xaml
│ │ ├── DefaultIndicator.xaml.cs
│ │ └── IIndicator.cs
│ ├── Filters
│ │ └── TextBoxFilterService.cs
│ ├── LengthValidator.cs
│ ├── PhoneValidator.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RangeValidator.cs
│ ├── RegexValidator.cs
│ ├── RequiredValidator.cs
│ ├── SSNValidator.cs
│ ├── Silverlight.Validators.csproj
│ ├── Silverlight.Validators.csproj.user
│ ├── ValidatorBase.cs
│ ├── ValidatorManager.cs
│ └── ValidatorService.cs
├── DataEntity
│ ├── AQWS_EVENT_INFO.cs
│ ├── AQWS_REPORT_INFO.cs
│ ├── BasicData.cs
│ ├── Bin
│ │ ├── Debug
│ │ │ ├── DataEntity.dll
│ │ │ └── DataEntity.pdb
│ │ └── Release
│ │ ├── DataEntity.dll
│ │ └── DataEntity.pdb
│ ├── ChatData.cs
│ ├── ComboBoxData.cs
│ ├── ConfirmHis.cs
│ ├── DC.cs
│ ├── DataEntity.csproj
│ ├── DataEntity.csproj.user
│ ├── Department.cs
│ ├── FX.cs
│ ├── FXDC.cs
│ ├── HSSE_Type.cs
│ ├── LC_BiaoZhang.cs
│ ├── LC_EM.cs
│ ├── LC_JianKang.cs
│ ├── LC_JiaoYu.cs
│ ├── LC_JingShi.cs
│ ├── LC_PingGu.cs
│ ├── LC_ShiJian.cs
│ ├── LC_Work.cs
│ ├── LC_Xingwei.cs
│ ├── LC_ZiGe.cs
│ ├── MapPoint.cs
│ ├── Point_ReplyHis.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Worker.cs
│ ├── Workflow.cs
│ ├── XKZY.cs
│ ├── deptCount.cs
│ └── obj
│ ├── Debug
│ │ ├── DataEntity.csproj.FileListAbsolute.txt
│ │ ├── DataEntity.csprojResolveAssemblyReference.cache
│ │ ├── DataEntity.dll
│ │ ├── DataEntity.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── DataEntity.csproj.FileListAbsolute.txt
│ ├── DataEntity.dll
│ ├── DataEntity.pdb
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── MyMapMode
│ ├── Bin
│ │ ├── Debug
│ │ │ ├── Microsoft.Maps.MapControl.Common.dll
│ │ │ ├── Microsoft.Maps.MapControl.dll
│ │ │ ├── MyMapMode.dll
│ │ │ └── MyMapMode.pdb
│ │ └── Release
│ │ ├── Microsoft.Maps.MapControl.Common.dll
│ │ ├── Microsoft.Maps.MapControl.Common.xml
│ │ ├── Microsoft.Maps.MapControl.dll
│ │ ├── Microsoft.Maps.MapControl.xml
│ │ ├── MyMapMode.dll
│ │ └── MyMapMode.pdb
│ ├── MyMapMode.cs
│ ├── MyMapMode.csproj
│ ├── MyMapMode.csproj.user
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Service References
│ ├── ServiceReferences.ClientConfig
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MyMapMode.csproj.FileListAbsolute.txt
│ │ ├── MyMapMode.csprojResolveAssemblyReference.cache
│ │ ├── MyMapMode.dll
│ │ ├── MyMapMode.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Service References.ServiceReference1.Reference.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── MyMapMode.csproj.FileListAbsolute.txt
│ ├── MyMapMode.csprojResolveAssemblyReference.cache
│ ├── MyMapMode.dll
│ ├── MyMapMode.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── NacksWebSys
│ ├── AQWS_SYS.csproj
│ ├── AQWS_SYS.csproj.user
│ ├── AQWS_SYS_TemporaryKey.pfx
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ └── Styles.xaml
│ ├── Bin
│ │ ├── Debug
│ │ │ ├── AQWS_SYS.dll
│ │ │ ├── AQWS_SYS.pdb
│ │ │ ├── AQWS_SYS.xap
│ │ │ ├── AppManifest.xaml
│ │ │ ├── DataEntity.dll
│ │ │ ├── DataEntity.pdb
│ │ │ ├── FJ.Core.dll
│ │ │ ├── Microsoft.CSharp.dll
│ │ │ ├── Microsoft.CSharp.xml
│ │ │ ├── Microsoft.Maps.MapControl.Common.dll
│ │ │ ├── Microsoft.Maps.MapControl.ExtendedModes.dll
│ │ │ ├── Microsoft.Maps.MapControl.dll
│ │ │ ├── MyMapMode.dll
│ │ │ ├── MyMapMode.pdb
│ │ │ ├── NacksWebSys.dll
│ │ │ ├── NacksWebSys.pdb
│ │ │ ├── NacksWebSys.xap
│ │ │ ├── NacksWebSysTestPage.html
│ │ │ ├── OfflineMap.dll
│ │ │ ├── OfflineMap.pdb
│ │ │ ├── ShiGuDataEntity.dll
│ │ │ ├── ShiGuDataEntity.pdb
│ │ │ ├── Silverlight.Validators.dll
│ │ │ ├── Silverlight.Validators.pdb
│ │ │ ├── System.ComponentModel.DataAnnotations.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.xml
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.xml
│ │ │ ├── System.ServiceModel.DomainServices.Client.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.xml
│ │ │ ├── System.ServiceModel.Web.Extensions.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.xml
│ │ │ ├── System.Windows.Controls.Data.DataForm.Toolkit.dll
│ │ │ ├── System.Windows.Controls.Data.DataForm.Toolkit.pdb
│ │ │ ├── System.Windows.Controls.Data.DataForm.Toolkit.xml
│ │ │ ├── System.Windows.Controls.Data.Input.dll
│ │ │ ├── System.Windows.Controls.Data.Input.xml
│ │ │ ├── System.Windows.Controls.Data.dll
│ │ │ ├── System.Windows.Controls.Data.xml
│ │ │ ├── System.Windows.Controls.DataVisualization.Toolkit.dll
│ │ │ ├── System.Windows.Controls.DataVisualization.Toolkit.pdb
│ │ │ ├── System.Windows.Controls.DataVisualization.Toolkit.xml
│ │ │ ├── System.Windows.Controls.Input.Toolkit.dll
│ │ │ ├── System.Windows.Controls.Input.Toolkit.pdb
│ │ │ ├── System.Windows.Controls.Input.Toolkit.xml
│ │ │ ├── System.Windows.Controls.Navigation.dll
│ │ │ ├── System.Windows.Controls.Navigation.xml
│ │ │ ├── System.Windows.Controls.Theming.Toolkit.dll
│ │ │ ├── System.Windows.Controls.Theming.Toolkit.pdb
│ │ │ ├── System.Windows.Controls.Theming.Toolkit.xml
│ │ │ ├── System.Windows.Controls.Theming.WhistlerBlue.dll
│ │ │ ├── System.Windows.Controls.Theming.WhistlerBlue.pdb
│ │ │ ├── System.Windows.Controls.Toolkit.Internals.dll
│ │ │ ├── System.Windows.Controls.Toolkit.dll
│ │ │ ├── System.Windows.Controls.Toolkit.pdb
│ │ │ ├── System.Windows.Controls.Toolkit.xml
│ │ │ ├── System.Windows.Controls.dll
│ │ │ ├── System.Windows.Controls.xml
│ │ │ ├── System.Windows.Data.dll
│ │ │ ├── System.Windows.Data.xml
│ │ │ ├── ar
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── bg
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── ca
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── cs
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── da
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── de
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ ├── el
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── es
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ ├── et
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── eu
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── fi
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── fr
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ ├── he
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── hr
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── hu
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── id
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── it
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ ├── ja
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ ├── ko
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ ├── lt
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── lv
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── mpost.SilverlightFramework.dll
│ │ │ ├── ms
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── nl
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── no
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── pl
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── pt
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── pt-BR
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── ro
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── ru
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ ├── silverPDF.dll
│ │ │ ├── sk
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── sl
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── sr-Cyrl-CS
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── sr-Latn-CS
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── sv
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── th
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── tr
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── uk
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── vi
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ └── System.Windows.Controls.resources.dll
│ │ │ ├── zh-Hans
│ │ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ │ └── System.Windows.Data.resources.dll
│ │ │ └── zh-Hant
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ └── Release
│ │ ├── AQWS_SYS.dll
│ │ ├── AQWS_SYS.pdb
│ │ ├── AQWS_SYS.xap
│ │ ├── AppManifest.xaml
│ │ ├── DataEntity.dll
│ │ ├── DataEntity.pdb
│ │ ├── FJ.Core.dll
│ │ ├── FJ.Core.pdb
│ │ ├── Microsoft.CSharp.dll
│ │ ├── Microsoft.CSharp.xml
│ │ ├── Microsoft.Maps.MapControl.Common.dll
│ │ ├── Microsoft.Maps.MapControl.Common.xml
│ │ ├── Microsoft.Maps.MapControl.ExtendedModes.dll
│ │ ├── Microsoft.Maps.MapControl.dll
│ │ ├── Microsoft.Maps.MapControl.xml
│ │ ├── MyMapMode.dll
│ │ ├── MyMapMode.pdb
│ │ ├── NacksWebSys.dll
│ │ ├── NacksWebSys.pdb
│ │ ├── NacksWebSys.xap
│ │ ├── NacksWebSysTestPage.html
│ │ ├── OfflineMap.dll
│ │ ├── OfflineMap.pdb
│ │ ├── ShiGuDataEntity.dll
│ │ ├── ShiGuDataEntity.pdb
│ │ ├── Silverlight.Validators.dll
│ │ ├── Silverlight.Validators.pdb
│ │ ├── System.ComponentModel.DataAnnotations.dll
│ │ ├── System.ComponentModel.DataAnnotations.xml
│ │ ├── System.ServiceModel.DomainServices.Client.Web.dll
│ │ ├── System.ServiceModel.DomainServices.Client.Web.xml
│ │ ├── System.ServiceModel.DomainServices.Client.dll
│ │ ├── System.ServiceModel.DomainServices.Client.xml
│ │ ├── System.ServiceModel.Web.Extensions.dll
│ │ ├── System.ServiceModel.Web.Extensions.xml
│ │ ├── System.Windows.Controls.Data.DataForm.Toolkit.dll
│ │ ├── System.Windows.Controls.Data.DataForm.Toolkit.pdb
│ │ ├── System.Windows.Controls.Data.DataForm.Toolkit.xml
│ │ ├── System.Windows.Controls.Data.Input.dll
│ │ ├── System.Windows.Controls.Data.Input.xml
│ │ ├── System.Windows.Controls.Data.dll
│ │ ├── System.Windows.Controls.Data.xml
│ │ ├── System.Windows.Controls.DataVisualization.Toolkit.dll
│ │ ├── System.Windows.Controls.DataVisualization.Toolkit.pdb
│ │ ├── System.Windows.Controls.DataVisualization.Toolkit.xml
│ │ ├── System.Windows.Controls.Input.Toolkit.dll
│ │ ├── System.Windows.Controls.Input.Toolkit.pdb
│ │ ├── System.Windows.Controls.Input.Toolkit.xml
│ │ ├── System.Windows.Controls.Navigation.dll
│ │ ├── System.Windows.Controls.Navigation.xml
│ │ ├── System.Windows.Controls.Theming.Toolkit.dll
│ │ ├── System.Windows.Controls.Theming.Toolkit.pdb
│ │ ├── System.Windows.Controls.Theming.Toolkit.xml
│ │ ├── System.Windows.Controls.Theming.WhistlerBlue.dll
│ │ ├── System.Windows.Controls.Theming.WhistlerBlue.pdb
│ │ ├── System.Windows.Controls.Toolkit.Internals.dll
│ │ ├── System.Windows.Controls.Toolkit.dll
│ │ ├── System.Windows.Controls.Toolkit.pdb
│ │ ├── System.Windows.Controls.Toolkit.xml
│ │ ├── System.Windows.Controls.dll
│ │ ├── System.Windows.Controls.xml
│ │ ├── System.Windows.Data.dll
│ │ ├── System.Windows.Data.xml
│ │ ├── ar
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── bg
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── ca
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── cs
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── da
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── de
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ ├── el
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── es
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ ├── et
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── eu
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── fi
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── fr
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ ├── he
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── hr
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── hu
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── id
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── it
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ ├── ja
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ ├── ko
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ ├── lt
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── lv
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── mpost.SilverlightFramework.dll
│ │ ├── ms
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── nl
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── no
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── pl
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── pt
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── pt-BR
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── ro
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── ru
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ ├── silverPDF.dll
│ │ ├── sk
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── sl
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── sr-Cyrl-CS
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── sr-Latn-CS
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── sv
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── th
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── tr
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── uk
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── vi
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ └── System.Windows.Controls.resources.dll
│ │ ├── zh-Hans
│ │ │ ├── Microsoft.CSharp.resources.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ │ ├── System.Windows.Controls.Data.resources.dll
│ │ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ │ ├── System.Windows.Controls.resources.dll
│ │ │ └── System.Windows.Data.resources.dll
│ │ └── zh-Hant
│ │ ├── Microsoft.CSharp.resources.dll
│ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ ├── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── System.Windows.Controls.Data.Input.resources.dll
│ │ ├── System.Windows.Controls.Data.resources.dll
│ │ ├── System.Windows.Controls.Navigation.resources.dll
│ │ ├── System.Windows.Controls.resources.dll
│ │ └── System.Windows.Data.resources.dll
│ ├── ChildWindow1.xaml
│ ├── ChildWindow1.xaml.cs
│ ├── Child_Window
│ │ ├── ChildWinBiaoJi.xaml
│ │ ├── ChildWinBiaoJi.xaml.cs
│ │ ├── ChildWinTongkuo.xaml
│ │ ├── ChildWinTongkuo.xaml.cs
│ │ ├── ChildWindowAddKeyMan.xaml
│ │ ├── ChildWindowAddKeyMan.xaml.cs
│ │ ├── ChildWindowBigImg.xaml
│ │ ├── ChildWindowBigImg.xaml.cs
│ │ ├── ChildWindowChangePwd.xaml
│ │ ├── ChildWindowChangePwd.xaml.cs
│ │ ├── ChildWindowChaoSong.xaml
│ │ ├── ChildWindowChaoSong.xaml.cs
│ │ ├── ChildWindowChat.xaml
│ │ ├── ChildWindowChat.xaml.cs
│ │ ├── ChildWindowCheck.xaml
│ │ ├── ChildWindowCheck.xaml.cs
│ │ ├── ChildWindowConfirmHis.xaml
│ │ ├── ChildWindowConfirmHis.xaml.cs
│ │ ├── ChildWindowHelp.xaml
│ │ ├── ChildWindowHelp.xaml.cs
│ │ ├── ChildWindowHistory.xaml
│ │ ├── ChildWindowHistory.xaml.cs
│ │ ├── ChildWindowImage.xaml
│ │ ├── ChildWindowImage.xaml.cs
│ │ ├── ChildWindowLogin.xaml
│ │ ├── ChildWindowLogin.xaml.cs
│ │ ├── ChildWindowNewEvent.xaml
│ │ ├── ChildWindowNewEvent.xaml.cs
│ │ ├── ChildWindowPrint.xaml
│ │ ├── ChildWindowPrint.xaml.cs
│ │ ├── ChildWindowReply.xaml
│ │ ├── ChildWindowReply.xaml.cs
│ │ ├── ChildWindowSelWorker.xaml
│ │ ├── ChildWindowSelWorker.xaml.cs
│ │ ├── ChildWindowSendCC.xaml
│ │ ├── ChildWindowSendCC.xaml.cs
│ │ ├── ChildWindowViewImg.xaml
│ │ ├── ChildWindowViewImg.xaml.cs
│ │ ├── ChildWindowWfStep.xaml
│ │ ├── ChildWindowWfStep.xaml.cs
│ │ ├── ChildWindowXKZY.xaml
│ │ ├── ChildWindowXKZY.xaml.cs
│ │ ├── ChildWindow_Confirm.xaml
│ │ └── ChildWindow_Confirm.xaml.cs
│ ├── Classes
│ │ ├── AsyncCallStatus.cs
│ │ ├── ByteConverter.cs
│ │ ├── Common.cs
│ │ ├── Constants.cs
│ │ ├── ContextMenu.cs
│ │ ├── CustomTileSource.cs
│ │ ├── DataGridExtensions.cs
│ │ ├── DraggablePushpin.cs
│ │ ├── ExcelExport.cs
│ │ ├── FileCollection.cs
│ │ ├── FileUploader.cs
│ │ ├── GetImageSoure.cs
│ │ ├── GetWorkFolw.cs
│ │ ├── GridBorderHelper.cs
│ │ ├── MarkObject.cs
│ │ ├── MyMapMode.cs
│ │ ├── OfflineMap.cs
│ │ ├── RTBContextMenu.cs
│ │ ├── SLCookieHelp.cs
│ │ ├── SendMail.cs
│ │ ├── ServerManager.cs
│ │ └── UserFile.cs
│ ├── Controls
│ │ ├── DataGridSelectColumn.xaml
│ │ ├── DataGridSelectColumn.xaml.cs
│ │ ├── DeptBtnControl.xaml
│ │ ├── DeptBtnControl.xaml.cs
│ │ ├── FileRowControl.xaml
│ │ ├── FileRowControl.xaml.cs
│ │ ├── FileUploadControl.xaml
│ │ ├── FileUploadControl.xaml.cs
│ │ ├── MessageBoxControl.xaml
│ │ ├── MessageBoxControl.xaml.cs
│ │ ├── PushPinControl.cs
│ │ ├── WaitControl.xaml
│ │ └── WaitControl.xaml.cs
│ ├── Generated_Code
│ │ └── AQWS_SYS.Web.g.cs
│ ├── Images
│ │ ├── Thumbs.db
│ │ └── png-0063.png
│ ├── Img
│ │ ├── 1.jpg
│ │ ├── 111.png
│ │ ├── 2.jpg
│ │ ├── 20120907.png
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 5554.png
│ │ ├── 5555.png
│ │ ├── Close.png
│ │ ├── Thumbs.db
│ │ ├── after.png
│ │ ├── back_alt.png
│ │ ├── before.png
│ │ ├── beijing.jpg
│ │ ├── cancel.png
│ │ ├── chat.png
│ │ ├── close1.png
│ │ ├── color.jpg
│ │ ├── cur.jpg
│ │ ├── doing.png
│ │ ├── find.png
│ │ ├── forward_alt.png
│ │ ├── img_del.png
│ │ ├── main.png
│ │ ├── play.png
│ │ ├── play1.png
│ │ ├── png-0508.png
│ │ ├── print.png
│ │ ├── print1.png
│ │ ├── qq.png
│ │ ├── select.jpg
│ │ ├── select.png
│ │ ├── shuaxin.png
│ │ ├── step0.jpg
│ │ ├── step1.jpg
│ │ ├── step2.jpg
│ │ ├── step3.jpg
│ │ ├── step4.jpg
│ │ ├── step5.jpg
│ │ ├── tick.png
│ │ ├── tuzhang.jpg
│ │ ├── u0.jpg
│ │ └── 未标题-1.png
│ ├── LvCheng
│ │ ├── BiaoZhangChildWindow.xaml
│ │ ├── BiaoZhangChildWindow.xaml.cs
│ │ ├── BiaoZhangControl.xaml
│ │ ├── BiaoZhangControl.xaml.cs
│ │ ├── BiaoZhangDataControl.xaml
│ │ ├── BiaoZhangDataControl.xaml.cs
│ │ ├── BiaoZhangDataControl1.xaml
│ │ ├── BiaoZhangDataControl1.xaml.cs
│ │ ├── BiaoZhangPage.xaml
│ │ ├── BiaoZhangPage.xaml.cs
│ │ ├── GongZuoChildWindow.xaml
│ │ ├── GongZuoChildWindow.xaml.cs
│ │ ├── GongZuoControl.xaml
│ │ ├── GongZuoControl.xaml.cs
│ │ ├── GongZuoDataControl.xaml
│ │ ├── GongZuoDataControl.xaml.cs
│ │ ├── GongZuoDataControl1.xaml
│ │ ├── GongZuoDataControl1.xaml.cs
│ │ ├── GongZuoPage.xaml
│ │ ├── GongZuoPage.xaml.cs
│ │ ├── HuZhao.xaml
│ │ ├── HuZhao.xaml.cs
│ │ ├── JiBenControl.xaml
│ │ ├── JiBenControl.xaml.cs
│ │ ├── JiBenControl1.xaml
│ │ ├── JiBenControl1.xaml.cs
│ │ ├── JiBenPage.xaml
│ │ ├── JiBenPage.xaml.cs
│ │ ├── JianKangChildWindow.xaml
│ │ ├── JianKangChildWindow.xaml.cs
│ │ ├── JianKangControl.xaml
│ │ ├── JianKangControl.xaml.cs
│ │ ├── JianKangDataControl.xaml
│ │ ├── JianKangDataControl.xaml.cs
│ │ ├── JianKangDataControl1.xaml
│ │ ├── JianKangDataControl1.xaml.cs
│ │ ├── JianKangPage.xaml
│ │ ├── JianKangPage.xaml.cs
│ │ ├── JiaoYuChildWindow.xaml
│ │ ├── JiaoYuChildWindow.xaml.cs
│ │ ├── JiaoYuControl.xaml
│ │ ├── JiaoYuControl.xaml.cs
│ │ ├── JiaoYuDataControl.xaml
│ │ ├── JiaoYuDataControl.xaml.cs
│ │ ├── JiaoYuDataControl1.xaml
│ │ ├── JiaoYuDataControl1.xaml.cs
│ │ ├── JiaoYuPage.xaml
│ │ ├── JiaoYuPage.xaml.cs
│ │ ├── JingShiChildWindow.xaml
│ │ ├── JingShiChildWindow.xaml.cs
│ │ ├── JingShiControl.xaml
│ │ ├── JingShiControl.xaml.cs
│ │ ├── JingShiDataControl.xaml
│ │ ├── JingShiDataControl.xaml.cs
│ │ ├── JingShiDataControl1.xaml
│ │ ├── JingShiDataControl1.xaml.cs
│ │ ├── JingShiPage.xaml
│ │ ├── JingShiPage.xaml.cs
│ │ ├── PingGuChildWindow.xaml
│ │ ├── PingGuChildWindow.xaml.cs
│ │ ├── PingGuControl.xaml
│ │ ├── PingGuControl.xaml.cs
│ │ ├── PingGuDataControl.xaml
│ │ ├── PingGuDataControl.xaml.cs
│ │ ├── PingGuDataControl1.xaml
│ │ ├── PingGuDataControl1.xaml.cs
│ │ ├── PingGuPage.xaml
│ │ ├── PingGuPage.xaml.cs
│ │ ├── ShiJianChildWindow.xaml
│ │ ├── ShiJianChildWindow.xaml.cs
│ │ ├── ShiJianControl.xaml
│ │ ├── ShiJianControl.xaml.cs
│ │ ├── ShiJianDataControl.xaml
│ │ ├── ShiJianDataControl.xaml.cs
│ │ ├── ShiJianDataControl1.xaml
│ │ ├── ShiJianDataControl1.xaml.cs
│ │ ├── ShiJianPage.xaml
│ │ ├── ShiJianPage.xaml.cs
│ │ ├── ViewListChildWindow.xaml
│ │ ├── ViewListChildWindow.xaml.cs
│ │ ├── ViewLvCheng.xaml
│ │ ├── ViewLvCheng.xaml.cs
│ │ ├── XingWeiChildWindow.xaml
│ │ ├── XingWeiChildWindow.xaml.cs
│ │ ├── XingWeiControl.xaml
│ │ ├── XingWeiControl.xaml.cs
│ │ ├── XingWeiDataControl.xaml
│ │ ├── XingWeiDataControl.xaml.cs
│ │ ├── XingWeiDataControl1.xaml
│ │ ├── XingWeiDataControl1.xaml.cs
│ │ ├── XingWeiPage.xaml
│ │ ├── XingWeiPage.xaml.cs
│ │ ├── ZiGeChildWindow.xaml
│ │ ├── ZiGeChildWindow.xaml.cs
│ │ ├── ZiGeControl.xaml
│ │ ├── ZiGeControl.xaml.cs
│ │ ├── ZiGeDataControl.xaml
│ │ ├── ZiGeDataControl.xaml.cs
│ │ ├── ZiGeDataControl1.xaml
│ │ ├── ZiGeDataControl1.xaml.cs
│ │ ├── ZiGePage.xaml
│ │ └── ZiGePage.xaml.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ ├── DataSources
│ │ │ ├── DataEntity.AQWS_REPORT_INFO.datasource
│ │ │ ├── DataEntity.BasicData.datasource
│ │ │ ├── DataEntity.ChatData.datasource
│ │ │ ├── DataEntity.ConfirmHis.datasource
│ │ │ ├── DataEntity.DC.datasource
│ │ │ ├── DataEntity.Department.datasource
│ │ │ ├── DataEntity.FX.datasource
│ │ │ ├── DataEntity.FXDC.datasource
│ │ │ ├── DataEntity.HSSE_Type.datasource
│ │ │ ├── DataEntity.LC_BiaoZhang.datasource
│ │ │ ├── DataEntity.LC_BiaoZhang1.datasource
│ │ │ ├── DataEntity.LC_EM.datasource
│ │ │ ├── DataEntity.LC_Health.datasource
│ │ │ ├── DataEntity.LC_JianKang.datasource
│ │ │ ├── DataEntity.LC_JiaoYu.datasource
│ │ │ ├── DataEntity.LC_JiaoYu1.datasource
│ │ │ ├── DataEntity.LC_JingShi.datasource
│ │ │ ├── DataEntity.LC_JingShi1.datasource
│ │ │ ├── DataEntity.LC_PingGu.datasource
│ │ │ ├── DataEntity.LC_ShiJian.datasource
│ │ │ ├── DataEntity.LC_ShiJian1.datasource
│ │ │ ├── DataEntity.LC_Work.datasource
│ │ │ ├── DataEntity.LC_Work1.datasource
│ │ │ ├── DataEntity.LC_Xingwei.datasource
│ │ │ ├── DataEntity.LC_Xingwei1.datasource
│ │ │ ├── DataEntity.LC_ZiGe.datasource
│ │ │ ├── DataEntity.LC_ZiGe1.datasource
│ │ │ ├── DataEntity.MapPoint.datasource
│ │ │ ├── DataEntity.Worker.datasource
│ │ │ ├── DataEntity.Workflow.datasource
│ │ │ ├── DataEntity.XKZY.datasource
│ │ │ ├── DataEntity.deptCount.datasource
│ │ │ ├── ShiGuDataEntity.comobox.datasource
│ │ │ ├── ShiGuDataEntity.employee.datasource
│ │ │ ├── ShiGuDataEntity.event_info.datasource
│ │ │ ├── ShiGuDataEntity.event_man.datasource
│ │ │ ├── ShiGuDataEntity.event_subao.datasource
│ │ │ └── ShiGuDataEntity.point.datasource
│ │ ├── InBrowserSettings.xml
│ │ └── OutOfBrowserSettings.xml
│ ├── Service References
│ │ ├── HSSE_DBService
│ │ │ ├── MapService.disco
│ │ │ ├── MapService.wsdl
│ │ │ ├── MapService.xsd
│ │ │ ├── MapService1.wsdl
│ │ │ ├── MapService1.xsd
│ │ │ ├── MapService2.xsd
│ │ │ ├── MapService3.xsd
│ │ │ ├── Reference.cs
│ │ │ ├── Reference.svcmap
│ │ │ ├── configuration.svcinfo
│ │ │ └── configuration91.svcinfo
│ │ ├── LvCheng_DBService
│ │ │ ├── LvChengService.disco
│ │ │ ├── LvChengService.wsdl
│ │ │ ├── LvChengService.xsd
│ │ │ ├── LvChengService1.wsdl
│ │ │ ├── LvChengService1.xsd
│ │ │ ├── LvChengService2.xsd
│ │ │ ├── LvChengService3.xsd
│ │ │ ├── Reference.cs
│ │ │ ├── Reference.svcmap
│ │ │ ├── configuration.svcinfo
│ │ │ └── configuration91.svcinfo
│ │ ├── ShiGu_Service
│ │ │ ├── Reference.cs
│ │ │ ├── Reference.svcmap
│ │ │ ├── ShiGuDBService.disco
│ │ │ ├── ShiGuDBService.wsdl
│ │ │ ├── ShiGuDBService.xsd
│ │ │ ├── ShiGuDBService1.wsdl
│ │ │ ├── ShiGuDBService1.xsd
│ │ │ ├── ShiGuDBService2.xsd
│ │ │ ├── ShiGuDBService3.xsd
│ │ │ ├── configuration.svcinfo
│ │ │ └── configuration91.svcinfo
│ │ └── UploadService
│ │ ├── Reference.cs
│ │ ├── Reference.svcmap
│ │ ├── UploadService1.disco
│ │ ├── UploadService2.wsdl
│ │ ├── UploadService2.xsd
│ │ ├── UploadService21.wsdl
│ │ ├── UploadService21.xsd
│ │ ├── configuration.svcinfo
│ │ └── configuration91.svcinfo
│ ├── ServiceReferences.ClientConfig
│ ├── ShiGuChildWindow
│ │ ├── EmployeeInfo.xaml
│ │ ├── EmployeeInfo.xaml.cs
│ │ ├── Meetting.xaml
│ │ ├── Meetting.xaml.cs
│ │ ├── Report.xaml
│ │ ├── Report.xaml.cs
│ │ ├── UploadFile.xaml
│ │ ├── UploadFile.xaml.cs
│ │ ├── addType.xaml
│ │ ├── addType.xaml.cs
│ │ ├── subao.xaml
│ │ ├── subao.xaml.cs
│ │ ├── subaoCheck.xaml
│ │ └── subaoCheck.xaml.cs
│ ├── ShiGuPage
│ │ ├── ShiGuMap.xaml
│ │ └── ShiGuMap.xaml.cs
│ ├── Views
│ │ ├── About.xaml
│ │ ├── About.xaml.cs
│ │ ├── ErrorWindow.xaml
│ │ ├── ErrorWindow.xaml.cs
│ │ ├── EventList.xaml
│ │ ├── EventList.xaml.cs
│ │ ├── HSSEChat.xaml
│ │ ├── HSSEChat.xaml.cs
│ │ ├── HSSECheck.xaml
│ │ ├── HSSECheck.xaml.cs
│ │ ├── HSSEWorkflow.xaml
│ │ ├── HSSEWorkflow.xaml.cs
│ │ ├── Home.xaml
│ │ ├── Home.xaml.cs
│ │ ├── HsseKeyManSet.xaml
│ │ ├── HsseKeyManSet.xaml.cs
│ │ ├── NewEvent.xaml
│ │ ├── NewEvent.xaml.cs
│ │ ├── PointHistory.xaml
│ │ ├── PointHistory.xaml.cs
│ │ ├── Unuse.xaml
│ │ ├── Unuse.xaml.cs
│ │ ├── XKZYManage.xaml
│ │ ├── XKZYManage.xaml.cs
│ │ ├── factoryMaps.xaml
│ │ ├── factoryMaps.xaml.cs
│ │ ├── noRight.xaml
│ │ ├── noRight.xaml.cs
│ │ ├── worker.xaml
│ │ └── worker.xaml.cs
│ └── obj
│ ├── Debug
│ │ ├── AQWS_SYS.RiaClientRefs.txt
│ │ ├── AQWS_SYS.RiaFiles.txt
│ │ ├── AQWS_SYS.RiaLinks.txt
│ │ ├── AQWS_SYS.RiaServerRefs.txt
│ │ ├── AQWS_SYS.RiaSourceFiles.txt
│ │ ├── AQWS_SYS.csproj.FileListAbsolute.txt
│ │ ├── AQWS_SYS.csprojResolveAssemblyReference.cache
│ │ ├── AQWS_SYS.dll
│ │ ├── AQWS_SYS.g.resources
│ │ ├── AQWS_SYS.pdb
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── ChildWinTongkuo.g.i.cs
│ │ ├── ChildWindow
│ │ │ ├── ChildWinBiaoJi.g.cs
│ │ │ ├── ChildWindowChat.g.cs
│ │ │ ├── ChildWindowHistory.g.cs
│ │ │ ├── ChildWindowImage.g.cs
│ │ │ ├── ChildWindowNewEvent.g.cs
│ │ │ ├── ChildWindowPrint.g.cs
│ │ │ └── ChildWindowReply.g.cs
│ │ ├── ChildWindow1.g.cs
│ │ ├── ChildWindow1.g.i.cs
│ │ ├── ChildWindowAddKeyMan.g.i.cs
│ │ ├── ChildWindowBigImg.g.cs
│ │ ├── ChildWindowChangePwd.g.cs
│ │ ├── ChildWindowCheck.g.cs
│ │ ├── ChildWindowConfirmHis.g.i.cs
│ │ ├── ChildWindowHelp.g.i.cs
│ │ ├── ChildWindowLogin.g.i.cs
│ │ ├── ChildWindowSelWorker.g.i.cs
│ │ ├── ChildWindowSendCC.g.cs
│ │ ├── ChildWindowWfStep.g.i.cs
│ │ ├── ChildWindowXKZY.g.i.cs
│ │ ├── ChildWindow_Confirm.g.i.cs
│ │ ├── Child_Window
│ │ │ ├── ChildWinBiaoJi.g.cs
│ │ │ ├── ChildWinBiaoJi.g.i.cs
│ │ │ ├── ChildWinTongkuo.g.cs
│ │ │ ├── ChildWinTongkuo.g.i.cs
│ │ │ ├── ChildWindowAddKeyMan.g.cs
│ │ │ ├── ChildWindowAddKeyMan.g.i.cs
│ │ │ ├── ChildWindowBigImg.g.cs
│ │ │ ├── ChildWindowBigImg.g.i.cs
│ │ │ ├── ChildWindowChangePwd.g.cs
│ │ │ ├── ChildWindowChangePwd.g.i.cs
│ │ │ ├── ChildWindowChaoSong.g.cs
│ │ │ ├── ChildWindowChaoSong.g.i.cs
│ │ │ ├── ChildWindowChat.g.cs
│ │ │ ├── ChildWindowChat.g.i.cs
│ │ │ ├── ChildWindowCheck.g.cs
│ │ │ ├── ChildWindowCheck.g.i.cs
│ │ │ ├── ChildWindowConfirmHis.g.cs
│ │ │ ├── ChildWindowConfirmHis.g.i.cs
│ │ │ ├── ChildWindowHelp.g.cs
│ │ │ ├── ChildWindowHelp.g.i.cs
│ │ │ ├── ChildWindowHistory.g.cs
│ │ │ ├── ChildWindowHistory.g.i.cs
│ │ │ ├── ChildWindowImage.g.cs
│ │ │ ├── ChildWindowImage.g.i.cs
│ │ │ ├── ChildWindowLogin.g.cs
│ │ │ ├── ChildWindowLogin.g.i.cs
│ │ │ ├── ChildWindowNewEvent.g.cs
│ │ │ ├── ChildWindowNewEvent.g.i.cs
│ │ │ ├── ChildWindowPrint.g.cs
│ │ │ ├── ChildWindowPrint.g.i.cs
│ │ │ ├── ChildWindowReply.g.cs
│ │ │ ├── ChildWindowReply.g.i.cs
│ │ │ ├── ChildWindowSelWorker.g.cs
│ │ │ ├── ChildWindowSelWorker.g.i.cs
│ │ │ ├── ChildWindowSendCC.g.cs
│ │ │ ├── ChildWindowSendCC.g.i.cs
│ │ │ ├── ChildWindowViewImg.g.cs
│ │ │ ├── ChildWindowViewImg.g.i.cs
│ │ │ ├── ChildWindowWfStep.g.cs
│ │ │ ├── ChildWindowWfStep.g.i.cs
│ │ │ ├── ChildWindowXKZY.g.cs
│ │ │ ├── ChildWindowXKZY.g.i.cs
│ │ │ ├── ChildWindow_Confirm.g.cs
│ │ │ ├── ChildWindow_Confirm.g.i.cs
│ │ │ └── 副本 ChildWindowImage.g.i.cs
│ │ ├── Controls
│ │ │ ├── DataGridSelectColumn.g.cs
│ │ │ ├── DataGridSelectColumn.g.i.cs
│ │ │ ├── DeptBtnControl.g.cs
│ │ │ ├── DeptBtnControl.g.i.cs
│ │ │ ├── FileRowControl.g.cs
│ │ │ ├── FileRowControl.g.i.cs
│ │ │ ├── FileUploadControl.g.cs
│ │ │ ├── FileUploadControl.g.i.cs
│ │ │ ├── MessageBoxControl.g.cs
│ │ │ ├── MessageBoxControl.g.i.cs
│ │ │ ├── WaitControl.g.cs
│ │ │ └── WaitControl.g.i.cs
│ │ ├── DataGridSelectColumn.g.i.cs
│ │ ├── DeptBtnControl.g.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── JianKangControl.g.i.cs
│ │ ├── JianKangDataControl1.g.i.cs
│ │ ├── LvCheng
│ │ │ ├── BiaoZhangChildWindow.g.cs
│ │ │ ├── BiaoZhangChildWindow.g.i.cs
│ │ │ ├── BiaoZhangControl.g.cs
│ │ │ ├── BiaoZhangControl.g.i.cs
│ │ │ ├── BiaoZhangDataControl.g.cs
│ │ │ ├── BiaoZhangDataControl.g.i.cs
│ │ │ ├── BiaoZhangDataControl1.g.cs
│ │ │ ├── BiaoZhangDataControl1.g.i.cs
│ │ │ ├── BiaoZhangPage.g.cs
│ │ │ ├── BiaoZhangPage.g.i.cs
│ │ │ ├── ChildWindow1.g.i.cs
│ │ │ ├── GongZuoChildWindow.g.cs
│ │ │ ├── GongZuoChildWindow.g.i.cs
│ │ │ ├── GongZuoControl.g.cs
│ │ │ ├── GongZuoControl.g.i.cs
│ │ │ ├── GongZuoDataControl.g.cs
│ │ │ ├── GongZuoDataControl.g.i.cs
│ │ │ ├── GongZuoDataControl1.g.cs
│ │ │ ├── GongZuoDataControl1.g.i.cs
│ │ │ ├── GongZuoPage.g.cs
│ │ │ ├── GongZuoPage.g.i.cs
│ │ │ ├── HuZhao.g.cs
│ │ │ ├── HuZhao.g.i.cs
│ │ │ ├── JiBenControl.g.cs
│ │ │ ├── JiBenControl.g.i.cs
│ │ │ ├── JiBenControl1.g.cs
│ │ │ ├── JiBenControl1.g.i.cs
│ │ │ ├── JiBenPage.g.cs
│ │ │ ├── JiBenPage.g.i.cs
│ │ │ ├── JianKangChildWindow.g.cs
│ │ │ ├── JianKangChildWindow.g.i.cs
│ │ │ ├── JianKangControl.g.cs
│ │ │ ├── JianKangControl.g.i.cs
│ │ │ ├── JianKangDataControl.g.cs
│ │ │ ├── JianKangDataControl.g.i.cs
│ │ │ ├── JianKangDataControl1.g.cs
│ │ │ ├── JianKangDataControl1.g.i.cs
│ │ │ ├── JianKangPage.g.cs
│ │ │ ├── JianKangPage.g.i.cs
│ │ │ ├── JiaoYuChildWindow.g.cs
│ │ │ ├── JiaoYuChildWindow.g.i.cs
│ │ │ ├── JiaoYuControl.g.cs
│ │ │ ├── JiaoYuControl.g.i.cs
│ │ │ ├── JiaoYuDataControl.g.cs
│ │ │ ├── JiaoYuDataControl.g.i.cs
│ │ │ ├── JiaoYuDataControl1.g.cs
│ │ │ ├── JiaoYuDataControl1.g.i.cs
│ │ │ ├── JiaoYuPage.g.cs
│ │ │ ├── JiaoYuPage.g.i.cs
│ │ │ ├── JingShiChildWindow.g.cs
│ │ │ ├── JingShiChildWindow.g.i.cs
│ │ │ ├── JingShiControl.g.cs
│ │ │ ├── JingShiControl.g.i.cs
│ │ │ ├── JingShiDataControl.g.cs
│ │ │ ├── JingShiDataControl.g.i.cs
│ │ │ ├── JingShiDataControl1.g.cs
│ │ │ ├── JingShiDataControl1.g.i.cs
│ │ │ ├── JingShiPage.g.cs
│ │ │ ├── JingShiPage.g.i.cs
│ │ │ ├── PingGuChildWindow.g.cs
│ │ │ ├── PingGuChildWindow.g.i.cs
│ │ │ ├── PingGuControl.g.cs
│ │ │ ├── PingGuControl.g.i.cs
│ │ │ ├── PingGuControl1.g.i.cs
│ │ │ ├── PingGuDataControl.g.cs
│ │ │ ├── PingGuDataControl.g.i.cs
│ │ │ ├── PingGuDataControl1.g.cs
│ │ │ ├── PingGuDataControl1.g.i.cs
│ │ │ ├── PingGuDateControl.g.i.cs
│ │ │ ├── PingGuPage.g.cs
│ │ │ ├── PingGuPage.g.i.cs
│ │ │ ├── ShiJianChildWindow.g.cs
│ │ │ ├── ShiJianChildWindow.g.i.cs
│ │ │ ├── ShiJianControl.g.cs
│ │ │ ├── ShiJianControl.g.i.cs
│ │ │ ├── ShiJianDataControl.g.cs
│ │ │ ├── ShiJianDataControl.g.i.cs
│ │ │ ├── ShiJianDataControl1.g.cs
│ │ │ ├── ShiJianDataControl1.g.i.cs
│ │ │ ├── ShiJianPage.g.cs
│ │ │ ├── ShiJianPage.g.i.cs
│ │ │ ├── ViewListChildWindow.g.cs
│ │ │ ├── ViewListChildWindow.g.i.cs
│ │ │ ├── ViewLvCheng.g.cs
│ │ │ ├── ViewLvCheng.g.i.cs
│ │ │ ├── XingWeiChildWindow.g.cs
│ │ │ ├── XingWeiChildWindow.g.i.cs
│ │ │ ├── XingWeiControl.g.cs
│ │ │ ├── XingWeiControl.g.i.cs
│ │ │ ├── XingWeiDataControl.g.cs
│ │ │ ├── XingWeiDataControl.g.i.cs
│ │ │ ├── XingWeiDataControl1.g.cs
│ │ │ ├── XingWeiDataControl1.g.i.cs
│ │ │ ├── XingWeiPage.g.cs
│ │ │ ├── XingWeiPage.g.i.cs
│ │ │ ├── ZiGeChildWindow.g.cs
│ │ │ ├── ZiGeChildWindow.g.i.cs
│ │ │ ├── ZiGeControl.g.cs
│ │ │ ├── ZiGeControl.g.i.cs
│ │ │ ├── ZiGeDataControl.g.cs
│ │ │ ├── ZiGeDataControl.g.i.cs
│ │ │ ├── ZiGeDataControl1.g.cs
│ │ │ ├── ZiGeDataControl1.g.i.cs
│ │ │ ├── ZiGePage.g.cs
│ │ │ ├── ZiGePage.g.i.cs
│ │ │ ├── 副本 BiaoZhangDataControl.g.i.cs
│ │ │ ├── 副本 GongZuoDataControl.g.i.cs
│ │ │ ├── 副本 JiBenControl.g.i.cs
│ │ │ ├── 副本 JiaoYuDataControl.g.i.cs
│ │ │ ├── 副本 JingShiDataControl.g.i.cs
│ │ │ ├── 副本 PingGuControl.g.i.cs
│ │ │ ├── 副本 ShiJianDataControl.g.i.cs
│ │ │ ├── 副本 XingWeiDataControl.g.i.cs
│ │ │ └── 副本 ZiGeDataControl.g.i.cs
│ │ ├── MainPage.g.cs
│ │ ├── MainPage.g.i.cs
│ │ ├── NacksWebSys.csproj.FileListAbsolute.txt
│ │ ├── NacksWebSys.csprojResolveAssemblyReference.cache
│ │ ├── NacksWebSys.dll
│ │ ├── NacksWebSys.g.resources
│ │ ├── NacksWebSys.pdb
│ │ ├── OfflineMap.g.i.cs
│ │ ├── PingGuDataControl1.g.i.cs
│ │ ├── PingGuDateControl.g.i.cs
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── ShiGuChildWindow
│ │ │ ├── ChildWindowBigImg.g.i.cs
│ │ │ ├── EmployeeInfo.g.cs
│ │ │ ├── EmployeeInfo.g.i.cs
│ │ │ ├── Meetting.g.cs
│ │ │ ├── Meetting.g.i.cs
│ │ │ ├── Report.g.cs
│ │ │ ├── Report.g.i.cs
│ │ │ ├── UploadFile.g.cs
│ │ │ ├── UploadFile.g.i.cs
│ │ │ ├── addType.g.cs
│ │ │ ├── addType.g.i.cs
│ │ │ ├── subao.g.cs
│ │ │ ├── subao.g.i.cs
│ │ │ ├── subaoCheck.g.cs
│ │ │ └── subaoCheck.g.i.cs
│ │ ├── ShiGuMap.g.i.cs
│ │ ├── ShiGuPage
│ │ │ ├── ShiGuMap.g.cs
│ │ │ └── ShiGuMap.g.i.cs
│ │ ├── TempPE
│ │ │ ├── Service References.HSSE_DBService.Reference.cs.dll
│ │ │ ├── Service References.LvCheng_DBService.Reference.cs.dll
│ │ │ ├── Service References.ServiceReference1.Reference.cs.dll
│ │ │ ├── Service References.ShiGu_Service.Reference.cs.dll
│ │ │ └── Service References.UploadService.Reference.cs.dll
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── Views
│ │ │ ├── About.g.cs
│ │ │ ├── About.g.i.cs
│ │ │ ├── AccidentMap.g.i.cs
│ │ │ ├── ErrorWindow.g.cs
│ │ │ ├── ErrorWindow.g.i.cs
│ │ │ ├── EventList.g.cs
│ │ │ ├── EventList.g.i.cs
│ │ │ ├── HSSEChat.g.cs
│ │ │ ├── HSSEChat.g.i.cs
│ │ │ ├── HSSECheck.g.cs
│ │ │ ├── HSSECheck.g.i.cs
│ │ │ ├── HSSEWorkflow.g.cs
│ │ │ ├── HSSEWorkflow.g.i.cs
│ │ │ ├── Home.g.cs
│ │ │ ├── Home.g.i.cs
│ │ │ ├── HsseKeyManSet.g.cs
│ │ │ ├── HsseKeyManSet.g.i.cs
│ │ │ ├── LvCheng
│ │ │ │ ├── GongZuoControl.g.i.cs
│ │ │ │ ├── HuZhao.g.i.cs
│ │ │ │ ├── JiBenControl.g.i.cs
│ │ │ │ ├── ViewLvCheng.g.i.cs
│ │ │ │ └── ZiGeControl.g.i.cs
│ │ │ ├── NewEvent.g.cs
│ │ │ ├── NewEvent.g.i.cs
│ │ │ ├── NewSuBao.g.cs
│ │ │ ├── Page1.g.cs
│ │ │ ├── PointHistory.g.cs
│ │ │ ├── PointHistory.g.i.cs
│ │ │ ├── Unuse.g.cs
│ │ │ ├── Unuse.g.i.cs
│ │ │ ├── XKZYManage.g.cs
│ │ │ ├── XKZYManage.g.i.cs
│ │ │ ├── factoryMaps.g.cs
│ │ │ ├── factoryMaps.g.i.cs
│ │ │ ├── noRight.g.cs
│ │ │ ├── noRight.g.i.cs
│ │ │ ├── worker.g.cs
│ │ │ └── worker.g.i.cs
│ │ ├── WaitControl.g.i.cs
│ │ ├── XKZYManage.g.i.cs
│ │ ├── XKZYPushPin.g.cs
│ │ └── XapCacheFile.xml
│ └── Release
│ ├── AQWS_SYS.RiaClientRefs.txt
│ ├── AQWS_SYS.RiaFiles.txt
│ ├── AQWS_SYS.RiaLinks.txt
│ ├── AQWS_SYS.RiaServerRefs.txt
│ ├── AQWS_SYS.RiaSourceFiles.txt
│ ├── AQWS_SYS.csproj.FileListAbsolute.txt
│ ├── AQWS_SYS.csprojResolveAssemblyReference.cache
│ ├── AQWS_SYS.dll
│ ├── AQWS_SYS.g.resources
│ ├── AQWS_SYS.pdb
│ ├── App.g.cs
│ ├── App.g.i.cs
│ ├── ChildWindow1.g.cs
│ ├── ChildWindow1.g.i.cs
│ ├── Child_Window
│ │ ├── ChildWinBiaoJi.g.cs
│ │ ├── ChildWinBiaoJi.g.i.cs
│ │ ├── ChildWinTongkuo.g.cs
│ │ ├── ChildWinTongkuo.g.i.cs
│ │ ├── ChildWindowAddKeyMan.g.cs
│ │ ├── ChildWindowAddKeyMan.g.i.cs
│ │ ├── ChildWindowBigImg.g.cs
│ │ ├── ChildWindowBigImg.g.i.cs
│ │ ├── ChildWindowChangePwd.g.cs
│ │ ├── ChildWindowChangePwd.g.i.cs
│ │ ├── ChildWindowChat.g.cs
│ │ ├── ChildWindowChat.g.i.cs
│ │ ├── ChildWindowCheck.g.cs
│ │ ├── ChildWindowCheck.g.i.cs
│ │ ├── ChildWindowConfirmHis.g.cs
│ │ ├── ChildWindowConfirmHis.g.i.cs
│ │ ├── ChildWindowHelp.g.cs
│ │ ├── ChildWindowHelp.g.i.cs
│ │ ├── ChildWindowHistory.g.cs
│ │ ├── ChildWindowHistory.g.i.cs
│ │ ├── ChildWindowImage.g.cs
│ │ ├── ChildWindowImage.g.i.cs
│ │ ├── ChildWindowLogin.g.cs
│ │ ├── ChildWindowLogin.g.i.cs
│ │ ├── ChildWindowNewEvent.g.cs
│ │ ├── ChildWindowNewEvent.g.i.cs
│ │ ├── ChildWindowPrint.g.cs
│ │ ├── ChildWindowPrint.g.i.cs
│ │ ├── ChildWindowReply.g.cs
│ │ ├── ChildWindowReply.g.i.cs
│ │ ├── ChildWindowSelWorker.g.cs
│ │ ├── ChildWindowSelWorker.g.i.cs
│ │ ├── ChildWindowSendCC.g.cs
│ │ ├── ChildWindowSendCC.g.i.cs
│ │ ├── ChildWindowViewImg.g.cs
│ │ ├── ChildWindowViewImg.g.i.cs
│ │ ├── ChildWindowWfStep.g.cs
│ │ ├── ChildWindowWfStep.g.i.cs
│ │ ├── ChildWindowXKZY.g.cs
│ │ ├── ChildWindowXKZY.g.i.cs
│ │ ├── ChildWindow_Confirm.g.cs
│ │ └── ChildWindow_Confirm.g.i.cs
│ ├── Controls
│ │ ├── DataGridSelectColumn.g.cs
│ │ ├── DataGridSelectColumn.g.i.cs
│ │ ├── DeptBtnControl.g.cs
│ │ ├── DeptBtnControl.g.i.cs
│ │ ├── FileRowControl.g.cs
│ │ ├── FileRowControl.g.i.cs
│ │ ├── FileUploadControl.g.cs
│ │ ├── FileUploadControl.g.i.cs
│ │ ├── MessageBoxControl.g.cs
│ │ ├── MessageBoxControl.g.i.cs
│ │ ├── WaitControl.g.cs
│ │ └── WaitControl.g.i.cs
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── LvCheng
│ │ ├── BiaoZhangChildWindow.g.cs
│ │ ├── BiaoZhangChildWindow.g.i.cs
│ │ ├── BiaoZhangControl.g.cs
│ │ ├── BiaoZhangControl.g.i.cs
│ │ ├── BiaoZhangDataControl.g.cs
│ │ ├── BiaoZhangDataControl.g.i.cs
│ │ ├── BiaoZhangDataControl1.g.cs
│ │ ├── BiaoZhangDataControl1.g.i.cs
│ │ ├── BiaoZhangPage.g.cs
│ │ ├── BiaoZhangPage.g.i.cs
│ │ ├── GongZuoChildWindow.g.cs
│ │ ├── GongZuoChildWindow.g.i.cs
│ │ ├── GongZuoControl.g.cs
│ │ ├── GongZuoControl.g.i.cs
│ │ ├── GongZuoDataControl.g.cs
│ │ ├── GongZuoDataControl.g.i.cs
│ │ ├── GongZuoDataControl1.g.cs
│ │ ├── GongZuoDataControl1.g.i.cs
│ │ ├── GongZuoPage.g.cs
│ │ ├── GongZuoPage.g.i.cs
│ │ ├── HuZhao.g.cs
│ │ ├── HuZhao.g.i.cs
│ │ ├── JiBenControl.g.cs
│ │ ├── JiBenControl.g.i.cs
│ │ ├── JiBenControl1.g.cs
│ │ ├── JiBenControl1.g.i.cs
│ │ ├── JiBenPage.g.cs
│ │ ├── JiBenPage.g.i.cs
│ │ ├── JianKangChildWindow.g.cs
│ │ ├── JianKangChildWindow.g.i.cs
│ │ ├── JianKangControl.g.cs
│ │ ├── JianKangControl.g.i.cs
│ │ ├── JianKangDataControl.g.cs
│ │ ├── JianKangDataControl.g.i.cs
│ │ ├── JianKangDataControl1.g.cs
│ │ ├── JianKangDataControl1.g.i.cs
│ │ ├── JianKangPage.g.cs
│ │ ├── JianKangPage.g.i.cs
│ │ ├── JiaoYuChildWindow.g.cs
│ │ ├── JiaoYuChildWindow.g.i.cs
│ │ ├── JiaoYuControl.g.cs
│ │ ├── JiaoYuControl.g.i.cs
│ │ ├── JiaoYuDataControl.g.cs
│ │ ├── JiaoYuDataControl.g.i.cs
│ │ ├── JiaoYuDataControl1.g.cs
│ │ ├── JiaoYuDataControl1.g.i.cs
│ │ ├── JiaoYuPage.g.cs
│ │ ├── JiaoYuPage.g.i.cs
│ │ ├── JingShiChildWindow.g.cs
│ │ ├── JingShiChildWindow.g.i.cs
│ │ ├── JingShiControl.g.cs
│ │ ├── JingShiControl.g.i.cs
│ │ ├── JingShiDataControl.g.cs
│ │ ├── JingShiDataControl.g.i.cs
│ │ ├── JingShiDataControl1.g.cs
│ │ ├── JingShiDataControl1.g.i.cs
│ │ ├── JingShiPage.g.cs
│ │ ├── JingShiPage.g.i.cs
│ │ ├── PingGuChildWindow.g.cs
│ │ ├── PingGuChildWindow.g.i.cs
│ │ ├── PingGuControl.g.cs
│ │ ├── PingGuControl.g.i.cs
│ │ ├── PingGuControl1.g.i.cs
│ │ ├── PingGuDataControl.g.cs
│ │ ├── PingGuDataControl.g.i.cs
│ │ ├── PingGuDataControl1.g.cs
│ │ ├── PingGuDataControl1.g.i.cs
│ │ ├── PingGuPage.g.cs
│ │ ├── PingGuPage.g.i.cs
│ │ ├── ShiJianChildWindow.g.cs
│ │ ├── ShiJianChildWindow.g.i.cs
│ │ ├── ShiJianControl.g.cs
│ │ ├── ShiJianControl.g.i.cs
│ │ ├── ShiJianDataControl.g.cs
│ │ ├── ShiJianDataControl.g.i.cs
│ │ ├── ShiJianDataControl1.g.cs
│ │ ├── ShiJianDataControl1.g.i.cs
│ │ ├── ShiJianPage.g.cs
│ │ ├── ShiJianPage.g.i.cs
│ │ ├── ViewListChildWindow.g.cs
│ │ ├── ViewListChildWindow.g.i.cs
│ │ ├── ViewLvCheng.g.cs
│ │ ├── ViewLvCheng.g.i.cs
│ │ ├── XingWeiChildWindow.g.cs
│ │ ├── XingWeiChildWindow.g.i.cs
│ │ ├── XingWeiControl.g.cs
│ │ ├── XingWeiControl.g.i.cs
│ │ ├── XingWeiDataControl.g.cs
│ │ ├── XingWeiDataControl.g.i.cs
│ │ ├── XingWeiDataControl1.g.cs
│ │ ├── XingWeiDataControl1.g.i.cs
│ │ ├── XingWeiPage.g.cs
│ │ ├── XingWeiPage.g.i.cs
│ │ ├── ZiGeChildWindow.g.cs
│ │ ├── ZiGeChildWindow.g.i.cs
│ │ ├── ZiGeControl.g.cs
│ │ ├── ZiGeControl.g.i.cs
│ │ ├── ZiGeDataControl.g.cs
│ │ ├── ZiGeDataControl.g.i.cs
│ │ ├── ZiGeDataControl1.g.cs
│ │ ├── ZiGeDataControl1.g.i.cs
│ │ ├── ZiGePage.g.cs
│ │ └── ZiGePage.g.i.cs
│ ├── MainPage.g.cs
│ ├── MainPage.g.i.cs
│ ├── NacksWebSys.csproj.FileListAbsolute.txt
│ ├── NacksWebSys.csprojResolveAssemblyReference.cache
│ ├── NacksWebSys.dll
│ ├── NacksWebSys.g.resources
│ ├── NacksWebSys.pdb
│ ├── ResolveAssemblyReference.cache
│ ├── ShiGuChildWindow
│ │ ├── EmployeeInfo.g.cs
│ │ ├── EmployeeInfo.g.i.cs
│ │ ├── Meetting.g.cs
│ │ ├── Meetting.g.i.cs
│ │ ├── Report.g.cs
│ │ ├── Report.g.i.cs
│ │ ├── UploadFile.g.cs
│ │ ├── UploadFile.g.i.cs
│ │ ├── addType.g.cs
│ │ ├── addType.g.i.cs
│ │ ├── subao.g.cs
│ │ ├── subao.g.i.cs
│ │ ├── subaoCheck.g.cs
│ │ └── subaoCheck.g.i.cs
│ ├── ShiGuPage
│ │ ├── ShiGuMap.g.cs
│ │ └── ShiGuMap.g.i.cs
│ ├── TempPE
│ │ ├── Service References.HSSE_DBService.Reference.cs.dll
│ │ ├── Service References.LvCheng_DBService.Reference.cs.dll
│ │ ├── Service References.ServiceReference1.Reference.cs.dll
│ │ ├── Service References.ShiGu_Service.Reference.cs.dll
│ │ └── Service References.UploadService.Reference.cs.dll
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ ├── Views
│ │ ├── About.g.cs
│ │ ├── About.g.i.cs
│ │ ├── AccidentMap.g.cs
│ │ ├── AccidentMap.g.i.cs
│ │ ├── ErrorWindow.g.cs
│ │ ├── ErrorWindow.g.i.cs
│ │ ├── EventList.g.cs
│ │ ├── EventList.g.i.cs
│ │ ├── HSSEChat.g.cs
│ │ ├── HSSEChat.g.i.cs
│ │ ├── HSSECheck.g.cs
│ │ ├── HSSECheck.g.i.cs
│ │ ├── HSSEWorkflow.g.cs
│ │ ├── HSSEWorkflow.g.i.cs
│ │ ├── Home.g.cs
│ │ ├── Home.g.i.cs
│ │ ├── HsseKeyManSet.g.cs
│ │ ├── HsseKeyManSet.g.i.cs
│ │ ├── NewEvent.g.cs
│ │ ├── NewEvent.g.i.cs
│ │ ├── PointHistory.g.cs
│ │ ├── PointHistory.g.i.cs
│ │ ├── Unuse.g.cs
│ │ ├── Unuse.g.i.cs
│ │ ├── XKZYManage.g.cs
│ │ ├── XKZYManage.g.i.cs
│ │ ├── factoryMaps.g.cs
│ │ ├── factoryMaps.g.i.cs
│ │ ├── noRight.g.cs
│ │ ├── noRight.g.i.cs
│ │ ├── worker.g.cs
│ │ └── worker.g.i.cs
│ └── XapCacheFile.xml
├── NacksWebSys.Web
│ ├── AQWS_SYS.Web.csproj
│ ├── AQWS_SYS.Web.csproj.user
│ ├── Application Files
│ │ └── WinForm_AQWS_1_0_0_0
│ │ ├── WinForm_AQWS.application
│ │ ├── WinForm_AQWS.exe.deploy
│ │ └── WinForm_AQWS.exe.manifest
│ ├── ClientBin
│ │ ├── AQWS_SYS.xap
│ │ └── Debug
│ ├── DBHelper.cs
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── Default.aspx.designer.cs
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── Login.aspx.designer.cs
│ ├── LvChengService.svc
│ ├── LvChengService.svc.cs
│ ├── MapService.svc
│ ├── MapService.svc.cs
│ ├── NacksWebSys.Web.Publish.xml
│ ├── NacksWebSysTestPage.aspx
│ ├── NacksWebSysTestPage.html
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── PublishProfiles
│ │ ├── 配置文件1.pubxml
│ │ └── 配置文件1.pubxml.user
│ ├── ShiGuDB.cs
│ ├── ShiGuDBService.svc
│ ├── ShiGuDBService.svc.cs
│ ├── Silverlight.js
│ ├── SilverlightFaultBehavior.cs
│ ├── ToPdf.cs
│ ├── Upload
│ │ ├── 201203192PL0.jpg
│ │ ├── 201203196822.jpg
│ │ ├── 2012031986JZ.jpg
│ │ ├── 20120319TV8L.jpg
│ │ ├── 201203200R04.jpg
│ │ ├── 201203202DPX.jpg
│ │ ├── 201203206JNX.jpg
│ │ ├── 20120320DT0L.jpg
│ │ ├── 20120320VNXR.jpg
│ │ ├── 2012032188F6.jpg
│ │ ├── 201203218T44.jpg_temp
│ │ ├── 20120321FF2J.jpg
│ │ ├── 20120321P4J4.jpg_temp
│ │ └── 20120321V20V.jpg
│ ├── UploadService.svc
│ ├── UploadService.svc.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── WinForm_AQWS.application
│ ├── bin
│ │ ├── AQWS_SYS.Web.dll
│ │ ├── AQWS_SYS.Web.dll.config
│ │ ├── AQWS_SYS.Web.pdb
│ │ ├── DataEntity.dll
│ │ ├── DataEntity.pdb
│ │ ├── ShiGuDataEntity.dll
│ │ ├── ShiGuDataEntity.pdb
│ │ ├── System.ServiceModel.DomainServices.Client.Web.dll
│ │ ├── System.ServiceModel.DomainServices.Client.dll
│ │ ├── System.ServiceModel.Web.Extensions.dll
│ │ └── System.Web.Silverlight.dll
│ ├── obj
│ │ ├── Debug
│ │ │ ├── AQWS_SYS.Web.csproj.FileListAbsolute.txt
│ │ │ ├── AQWS_SYS.Web.dll
│ │ │ ├── AQWS_SYS.Web.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── NacksWebSys.Web.csproj.FileListAbsolute.txt
│ │ │ ├── NacksWebSys.Web.csprojResolveAssemblyReference.cache
│ │ │ ├── Package
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ └── Release
│ │ ├── AQWS_SYS.Web.csproj.FileListAbsolute.txt
│ │ ├── AQWS_SYS.Web.csprojResolveAssemblyReference.cache
│ │ ├── AQWS_SYS.Web.dll
│ │ ├── AQWS_SYS.Web.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── NacksWebSys.Web.csproj.FileListAbsolute.txt
│ │ ├── NacksWebSys.Web.csprojResolveAssemblyReference.cache
│ │ ├── NacksWebSys.Web.dll
│ │ ├── NacksWebSys.Web.pdb
│ │ ├── Package
│ │ │ └── PackageTmp
│ │ │ ├── ClientBin
│ │ │ │ └── AQWS_SYS.xap
│ │ │ ├── Login.aspx
│ │ │ ├── LvChengService.svc
│ │ │ ├── MapService.svc
│ │ │ ├── NacksWebSysTestPage.aspx
│ │ │ ├── NacksWebSysTestPage.html
│ │ │ ├── ShiGuDBService.svc
│ │ │ ├── Silverlight.js
│ │ │ ├── UploadService.svc
│ │ │ ├── Web.config
│ │ │ └── bin
│ │ │ ├── AQWS_SYS.Web.dll
│ │ │ ├── DataEntity.dll
│ │ │ ├── ShiGuDataEntity.dll
│ │ │ └── System.Web.Silverlight.dll
│ │ ├── ProfileTransformWebConfig
│ │ │ └── transformed
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── TransformWebConfig
│ │ │ ├── assist
│ │ │ │ └── Web.config
│ │ │ ├── original
│ │ │ │ └── Web.config
│ │ │ └── transformed
│ │ │ └── Web.config
│ │ └── _WPPLastBuildInfo.txt
│ ├── publish.htm
│ └── setup.exe
├── NacksWebSys.suo
├── OfflineMap
│ ├── Bin
│ │ ├── Debug
│ │ │ ├── Microsoft.Maps.MapControl.Common.dll
│ │ │ ├── Microsoft.Maps.MapControl.Common.xml
│ │ │ ├── Microsoft.Maps.MapControl.dll
│ │ │ ├── Microsoft.Maps.MapControl.xml
│ │ │ ├── OfflineMap.dll
│ │ │ └── OfflineMap.pdb
│ │ └── Release
│ │ ├── Microsoft.Maps.MapControl.Common.dll
│ │ ├── Microsoft.Maps.MapControl.Common.xml
│ │ ├── Microsoft.Maps.MapControl.dll
│ │ ├── Microsoft.Maps.MapControl.xml
│ │ ├── OfflineMap.dll
│ │ └── OfflineMap.pdb
│ ├── OfflineMap.cs
│ ├── OfflineMap.csproj
│ ├── OfflineMap.csproj.user
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Themes
│ │ └── Generic.xaml
│ └── obj
│ ├── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── OfflineMap.csproj.FileListAbsolute.txt
│ │ ├── OfflineMap.dll
│ │ ├── OfflineMap.g.resources
│ │ ├── OfflineMap.pdb
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── Themes
│ └── Release
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── OfflineMap.csproj.FileListAbsolute.txt
│ ├── OfflineMap.csprojResolveAssemblyReference.cache
│ ├── OfflineMap.dll
│ ├── OfflineMap.g.resources
│ ├── OfflineMap.pdb
│ ├── ResolveAssemblyReference.cache
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Themes
├── ShiGuDataEntity
│ ├── Bin
│ │ ├── Debug
│ │ │ ├── ShiGuDataEntity.dll
│ │ │ ├── ShiGuDataEntity.pdb
│ │ │ ├── System.ComponentModel.DataAnnotations.dll
│ │ │ ├── System.ComponentModel.DataAnnotations.xml
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.xml
│ │ │ ├── System.ServiceModel.DomainServices.Client.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.xml
│ │ │ ├── System.ServiceModel.Web.Extensions.dll
│ │ │ ├── System.ServiceModel.Web.Extensions.xml
│ │ │ ├── ar
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── bg
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── ca
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── cs
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── da
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── de
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── el
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── es
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── et
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── eu
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── fi
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── fr
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── he
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── hr
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── hu
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── id
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── it
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── ja
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── ko
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── lt
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── lv
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── ms
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── nl
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── no
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── pl
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── pt
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── pt-BR
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── ro
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── ru
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ ├── sk
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── sl
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── sr-Cyrl-CS
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── sr-Latn-CS
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── sv
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── th
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── tr
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── uk
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── vi
│ │ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── zh-Hans
│ │ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ │ └── zh-Hant
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ └── Release
│ │ ├── ShiGuDataEntity.dll
│ │ ├── ShiGuDataEntity.pdb
│ │ ├── System.ComponentModel.DataAnnotations.dll
│ │ ├── System.ComponentModel.DataAnnotations.xml
│ │ ├── System.ServiceModel.DomainServices.Client.Web.dll
│ │ ├── System.ServiceModel.DomainServices.Client.Web.xml
│ │ ├── System.ServiceModel.DomainServices.Client.dll
│ │ ├── System.ServiceModel.DomainServices.Client.xml
│ │ ├── System.ServiceModel.Web.Extensions.dll
│ │ ├── System.ServiceModel.Web.Extensions.xml
│ │ ├── ar
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── bg
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── ca
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── cs
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── da
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── de
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── el
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── es
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── et
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── eu
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── fi
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── fr
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── he
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── hr
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── hu
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── id
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── it
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── ja
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── ko
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── lt
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── lv
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── ms
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── nl
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── no
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── pl
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── pt
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── pt-BR
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── ro
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── ru
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ ├── sk
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── sl
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── sr-Cyrl-CS
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── sr-Latn-CS
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── sv
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── th
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── tr
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── uk
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── vi
│ │ │ └── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── zh-Hans
│ │ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ │ └── zh-Hant
│ │ ├── System.ComponentModel.DataAnnotations.resources.dll
│ │ ├── System.ServiceModel.DomainServices.Client.Web.resources.dll
│ │ ├── System.ServiceModel.DomainServices.Client.resources.dll
│ │ └── System.ServiceModel.Web.Extensions.resources.dll
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ShiGuDataEntity.csproj
│ ├── ShiGuDataEntity.csproj.user
│ ├── Upload_data.cs
│ ├── comobox.cs
│ ├── employee.cs
│ ├── event_info.cs
│ ├── event_man.cs
│ ├── event_subao.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ShiGuDataEntity.RiaLinks.txt
│ │ │ ├── ShiGuDataEntity.RiaSourceFiles.txt
│ │ │ ├── ShiGuDataEntity.csproj.FileListAbsolute.txt
│ │ │ ├── ShiGuDataEntity.csprojResolveAssemblyReference.cache
│ │ │ ├── ShiGuDataEntity.dll
│ │ │ ├── ShiGuDataEntity.pdb
│ │ │ ├── TempPE
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── Release
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── ShiGuDataEntity.csproj.FileListAbsolute.txt
│ │ ├── ShiGuDataEntity.csprojResolveAssemblyReference.cache
│ │ ├── ShiGuDataEntity.dll
│ │ ├── ShiGuDataEntity.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── point.cs
├── Silverlight.Validators
│ ├── Bin
│ │ ├── Debug
│ │ │ ├── Silverlight.Validators.dll
│ │ │ └── Silverlight.Validators.pdb
│ │ └── Release
│ │ ├── Silverlight.Validators.dll
│ │ └── Silverlight.Validators.pdb
│ ├── Controls
│ │ ├── DefaultIndicator.xaml
│ │ ├── DefaultIndicator.xaml.cs
│ │ └── IIndicator.cs
│ ├── Filters
│ │ └── TextBoxFilterService.cs
│ ├── LengthValidator.cs
│ ├── PhoneValidator.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RangeValidator.cs
│ ├── RegexValidator.cs
│ ├── RequiredValidator.cs
│ ├── SSNValidator.cs
│ ├── Silverlight.Validators.csproj
│ ├── Silverlight.Validators.csproj.user
│ ├── ValidatorBase.cs
│ ├── ValidatorManager.cs
│ ├── ValidatorService.cs
│ └── obj
│ ├── Debug
│ │ ├── Controls
│ │ │ ├── DefaultIndicator.g.cs
│ │ │ └── DefaultIndicator.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Silverlight.Validators.csproj.FileListAbsolute.txt
│ │ ├── Silverlight.Validators.dll
│ │ ├── Silverlight.Validators.g.resources
│ │ ├── Silverlight.Validators.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── Release
│ ├── Controls
│ │ ├── DefaultIndicator.g.cs
│ │ └── DefaultIndicator.g.i.cs
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── Silverlight.Validators.csproj.FileListAbsolute.txt
│ ├── Silverlight.Validators.dll
│ ├── Silverlight.Validators.g.resources
│ ├── Silverlight.Validators.pdb
│ ├── TempPE
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── UpgradeLog.htm
├── from.gif
├── sql脚本
│ ├── AQWS_VIEW_COUNTBYDEPT.sql
│ ├── AQWS_VIEW_EVENTS.sql
│ ├── AQWS_VIEW_KEYMAN.sql
│ ├── AQWS_VIEW_MAP_POINTS.sql
│ ├── AQWS_VIEW_SYSUSER.sql
│ ├── AQWS_VIEW_WORKER.sql
│ ├── AQWS_VIEW_WORKER_ALL.sql
│ ├── AQWS_VIEW_WORKER_DEPT.sql
│ ├── AQWS_VIEW_WORKFLOW.sql
│ ├── AQWS_XKZY_FXDC.sql
│ └── tables.sql
├── 最新Asp.Net源码下载.url
├── 地图切割.docx
└── 找例子网_SafetyBasedElectronicMap_29f8e20e-4b95-44a4-b042-200a7104e873.zip
293 directories, 1952 files
评论